home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet internetowy / Rozne / HTTrack 3.40-2 / httrack-3.40-2.exe / {app} / src_win / WinHTTrack / NewFolder.cpp < prev    next >
C/C++ Source or Header  |  1999-03-12  |  986b  |  45 lines

  1. // NewFolder.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "Shell.h"
  6. #include "NewFolder.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CNewFolder dialog
  16.  
  17.  
  18. CNewFolder::CNewFolder(CWnd* pParent /*=NULL*/)
  19.     : CDialog(CNewFolder::IDD, pParent)
  20. {
  21.     //{{AFX_DATA_INIT(CNewFolder)
  22.     m_folder = _T("");
  23.     //}}AFX_DATA_INIT
  24. }
  25.  
  26.  
  27. void CNewFolder::DoDataExchange(CDataExchange* pDX)
  28. {
  29.     CDialog::DoDataExchange(pDX);
  30.     //{{AFX_DATA_MAP(CNewFolder)
  31.     DDX_Text(pDX, IDC_Folder, m_folder);
  32.     //}}AFX_DATA_MAP
  33. }
  34.  
  35.  
  36. BEGIN_MESSAGE_MAP(CNewFolder, CDialog)
  37.     //{{AFX_MSG_MAP(CNewFolder)
  38.         // NOTE: the ClassWizard will add message map macros here
  39.     //}}AFX_MSG_MAP
  40.     ON_COMMAND(ID_HELP, OnHelp)
  41. END_MESSAGE_MAP()
  42.  
  43. /////////////////////////////////////////////////////////////////////////////
  44. // CNewFolder message handlers
  45.